Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webtouch

Package Overview
Dependencies
Maintainers
4
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webtouch

Validate that a web site and all its required resources are available.

  • 0.5.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
Maintainers
4
Weekly downloads
 
Created
Source

webtouch

npm install webtouch

Validate that a web site and all its required resources are available.

var webtouch = require('webtouch')

webtouch('http://www.google.com', function (e, urls) {
  if (e) throw e
  console.log(urls)
})

The website will be parsed and all the resources in the html will be touched via an HTTP GET.

There's also an event emitter returned that you can use to monitor.

webtouch('http://www.google.com').on('get', function (url) {console.log("fetching", url)})
webtouch(urls, [opts], cb)
  • urls Either a string for a single url or an array of urls.
  • opts
    • timeout A timeout in millisecond for each GET, this is not a timeout for the entire crawl.
    • img Fetch images, defaults to true.
    • meta Fetch images in meta tags where itemprop === "image", defaults to true.
    • script Fetch scripts, defaults to true.
    • a Fetch and parse links, defaults to false. This method is dangerous since it basically turns webtouch in to a crawler that could potentially never return.
  • cb function (error, urls) {} returns all of the urls that have been touched.
events
  • get function (url){} The url that is about to be touched.
  • resp function (response, url){} The http.ClientResponse object and url that was just touched.

Keywords

FAQs

Package last updated on 14 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc